home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / livecd.squashfs / usr / include / reiser4 / flow.h < prev    next >
C/C++ Source or Header  |  2006-01-09  |  628b  |  26 lines

  1. /* Copyright (C) 2001, 2002, 2003, 2004 by Hans Reiser, licensing governed by
  2.    reiser4progs/COPYING.
  3.    
  4.    flow.h -- declarations of functions for working with flow. */
  5.  
  6. #ifndef REISER4_FLOW_H
  7. #define REISER4_FLOW_H
  8.  
  9. #include <reiser4/types.h>
  10.  
  11. extern int64_t reiser4_flow_read(reiser4_tree_t *tree,
  12.                  trans_hint_t *hint);
  13.  
  14. #ifndef ENABLE_MINIMAL
  15. extern int64_t reiser4_flow_write(reiser4_tree_t *tree,
  16.                   trans_hint_t *hint);
  17.  
  18. extern errno_t reiser4_flow_convert(reiser4_tree_t *tree,
  19.                     conv_hint_t *hint);
  20.  
  21. extern int64_t reiser4_flow_truncate(reiser4_tree_t *tree,
  22.                      trans_hint_t *hint);
  23. #endif
  24.  
  25. #endif
  26.